home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 2003 September / PC Answers September 2003.iso / Software / trial / MonitorIT 5.2.06 / monitorit_fullsetup.exe / data1.cab / Rpm / RPMIntro.asp < prev    next >
Encoding:
Text File  |  2003-06-24  |  14.3 KB  |  294 lines

  1. <html>
  2.  
  3. <head>
  4. <meta HTTP-EQUIV="If-Modified-Since:Sun, 21 Mar 1999 10:29:02 GMT">
  5. <link rel="stylesheet" type="text/css" href="css/rpmstyle.css">
  6. <meta name="Microsoft Border" content="none">
  7.  
  8. <style>
  9. .WarningStyle { border: solid 1px ; overflow:none; background-color:activeborder; width:550; height:35}
  10. .WarningStyle { border-top-color:white; border-left-color:white; border-bottom-color:graytext; border-right-color:graytext;  }
  11.  
  12. .IntroSpecs { font-family: arial; font-size:8pt; font-weight:700; color:windowtext }
  13. .IntroSpecsLarge { font-family: arial; font-size:13pt; font-weight:700; color:windowtext }
  14.  
  15. .PopUpBox { background-color:activeborder; position:absolute; margin:0; padding:0; border : solid thin; }
  16. .PopUpBox { border-top-color : #E0E0E0; border-left-color : #E0E0E0; border-bottom-color : #555555; border-right-color : #555555 }
  17.  
  18. </style>
  19. </head>
  20.  
  21. <body class="" language="JavaScript" RPMServerAddress="!BreakoutBot:ServerAddress!" RPMHostPort="!BreakoutBot:MonitorPort!" RPMHostIP="!BreakoutBot:MonitorIP!"  RPMCollectorPort="!BreakoutBot:CollectorPort!"  MServerAddr="!BreakoutBot:MServerIPAddr!" MServerName="!BreakoutBot:MServerName!" BOBDone="!BreakoutBot:Done!"
  22. bgproperties="fixed" onLoad="processOnLoad();" onunload="processUnload()" style="cursor:wait; background-color: activeborder" onkeydown="processBSP()" onclick="checkClick(); ClickReset()"  >
  23.  
  24. <script language="Javascript">
  25. var Tid = null;
  26. var RTid = null;
  27. var WelcomeMode = false;
  28.  
  29. // Capture and ignore script errors
  30.     window.onerror = wwScrErr;
  31. function wwScrErr() {
  32.     return true;
  33. }
  34.  
  35. function WaitForControlsClose(){
  36.     document.all.WarningBox.style.display = "none";
  37.     top.Rstatus.StatWait.style.display = "none";
  38.     top.Rstatus.Pstat("");
  39.     document.body.style.cursor = "auto";
  40.     top.MainLoaded = true; // Flag that Main is now loaded
  41. }
  42. // Kludge to provide way out if top.MainLoaded gets set back to false
  43. function ClickReset() {
  44.     if ( document.all.WarningBox.style.display == "none" ) {
  45.       WaitForControlsClose(); 
  46.     }
  47. }
  48.  
  49. var DelayCount = 0;
  50. // Process Load Complete
  51. function processOnLoad() {
  52.     Tid = null; // reset if set
  53.     document.body.RPMServerAddress = document.body.RPMHostIP;
  54.     top.Rstatus.Pstat("Connecting to MonitorIT Server at: "+document.body.RPMServerAddress);
  55.     // Wait until Banner, Menu and Tree pages are completed loading before proceeding
  56.     if ( top.BannerLoaded == false || top.MenuLoaded == false || top.TreeLoaded == false ) { 
  57.         if ( ++DelayCount > 150 ) { // 7.5 seconds at 50ms delay
  58.             document.all.WarningBox.style.display = "";
  59.         }
  60.         Tid = setTimeout("processOnLoad()",50); // Not complete, delay 50 ms. then check again
  61.         return; // exit and wait
  62.     }
  63.     document.title = top.banner.RpmIntroTitle; // Title for this Intro page
  64.     WaitForControlsClose(); 
  65.     // Get current Page coordinates
  66.     FakeBut.click();    // simulate event to call "savePageCoord(...)"
  67.     
  68.     // check if any error loading the required ActiveX controls
  69.     var ObjectError = null;
  70.     if ( top.CommObjectErrorFlag ) {
  71.         ObjectError = "RPMCOMM";
  72.     }
  73.     else if ( top.TreeObjectErrorFlag ) {
  74.         ObjectError = "RPMTREE";
  75.     }
  76.     else if ( top.OutlookObjectErrorFlag ) {
  77.         ObjectError = "RPMOUTLOOK";
  78.     }
  79.     else if ( top.MilObjectErrorFlag ) {
  80.         ObjectError = "MonitorITLive";
  81.     }
  82.     if ( ObjectError != null ) {
  83.         alert("Required ActiveX Control '"+ObjectError+".OCX' did not load properly!\nUnable to continue loading MonitorIT.");
  84.         top.GoExit();
  85.         return;
  86.     }
  87.     Hp = parseInt(document.body.RPMHostPort,10);
  88.     RpmCC_IA.Connect(document.body.RPMHostIP,Hp, "");
  89.     var IEText = " Use IE from another PC and connect to this MonitorIT Server's built-in HTTP server (you do not need IIS or any other web software), using as the URL, ";
  90.     IEText += "<A HREF='RpmIntro.asp'>http://"+document.body.MServerName+":"+(Hp-1)+"</A> ";
  91.     IEText += " or <A HREF='RpmIntro.asp'>http://"+document.body.MServerAddr+":"+(Hp-1)+"</A> ";
  92.     IEText += "for complete remote console access.<br>"
  93.     IETip.insertAdjacentHTML("beforeEnd",IEText);
  94.  
  95.     processSizeChange();
  96. }
  97. function processConnectConfirmed() {
  98.     RpmCC_IA.GetLicenseCount(); // get Server license count
  99. }
  100.  
  101. // Process Before Page Unload
  102. function processUnload() {
  103.     if ( Tid != null ) {
  104.         clearTimeout(Tid); // stop timeout routine
  105.     }
  106.     if ( RTid != null ) {
  107.         clearTimeout(RTid); // stop timeout routine
  108.     }
  109.     if (     top.BannerLoaded == true ) {
  110.         top.banner.CurrentPageName = null;
  111.         top.banner.SetIntroFirstTime(false);
  112.     }
  113. }
  114.  
  115. function processNextSteps() {
  116.     top.main.cleardoc();
  117.     top.main.ActionPane.window.location.href = "MonitorIT_NextSteps.htm";
  118.     top.document.title = "MonitorIT First-Time Steps Checklist";  
  119. }
  120. function processQuickStart() {
  121.     top.main.cleardoc();
  122.     top.main.ActionPane.window.location.href = "MonitorIT_QuickStart.htm";
  123.     top.document.title = "MonitorIT Quick Start";  
  124. }
  125.  
  126. var PuPW = "420px", PuPWu=420;
  127. function processSizeChange() {
  128.     //PopUpContext Menu
  129.     bCw = document.body.clientWidth;
  130.    PopUpContextSize(bCw);
  131.    
  132.    // PopUp 
  133.    PuPLeft = (bCw-PuPWu)/2;
  134.    PopUpConfirm.style.left = PuPLeft+"px"; 
  135.    PopUpConfirm.style.top = "20px"; 
  136.    PopUpConfirm.style.height = "230px";
  137.    PopUpConfirm.style.width = PuPW;
  138. }
  139. function processEvalContinue() {
  140.     PopUpConfirm.style.display = "none";
  141. }
  142.  
  143.  
  144. function PopUpContextOpen() {
  145. }
  146. function PopUpContextClose() {
  147. }
  148. </script>
  149. <script LANGUAGE="JavaScript" src="js/MiscFunc.js"></script>
  150.  
  151. <script LANGUAGE="JavaScript" FOR="RpmCC_IA" EVENT="LicenseCount(ldata)">
  152. <!--
  153. var warr = new Array();
  154. warr = ldata.split("~"); // parse the event data
  155. if ( warr.length >= 3 ) { // if OK
  156.     if ( warr[2].indexOf("Eval") >= 0 ) {
  157.         PopUpConfirm.style.display = "";
  158.         EvalExpire.innerText = warr[2];
  159.         vertype.innerHTML = "Evaluation Version<br>Expires on "+warr[2].substring(27,warr[2].length)+"<br>";
  160.     }
  161.     else {
  162.         vertype.innerHTML = "Licensed Version<br>Maximum "+warr[1]+" servers/devices<br>";
  163.     }  
  164.     vertype.style.display = "";
  165. }
  166. //-->
  167. </script>
  168.  
  169. <script LANGUAGE="JavaScript" FOR="window" EVENT="onresize()">
  170. <!--
  171.     top.banner.savePageCoord(event,document.body,"RpmIntro");
  172.     processSizeChange()
  173. //-->
  174. </script>
  175.  
  176. <script LANGUAGE="JavaScript" FOR="RpmCC_IA" EVENT="Connected()">
  177. <!--
  178. processConnectConfirmed();
  179. //-->
  180. </script> 
  181.  
  182. <script LANGUAGE="JavaScript" src="js/PopUpMenuFunc.js"></script>
  183.  
  184. <OBJECT classid="CLSID:D88C2358-FC83-11D1-BF49-00104B2D6F80" codeBase="controls/RPMComm.cab#version=5,2,0,0" height="1" id="RpmCC_IA" name="RpmCC_IA" style="display: none" width="14"><PARAM NAME="_Version" VALUE="65536"><PARAM NAME="_ExtentX" VALUE="370"><PARAM NAME="_ExtentY" VALUE="26"><PARAM NAME="_StockProps" VALUE="0"></OBJECT>
  185.  
  186. <!-- Invisible Object to Support Simulated Click Event -->
  187. <button id="FakeBut" style="display:none" onclick="top.banner.savePageCoord(event,document.body,'RpmIntro')">
  188. </button>
  189.  
  190. <center><span id="TagTitle" style="font-family: arial; font-weight:700; font-size:18pt; color:windowtext">Network Management System</span><br><span id="TagTitle1" class="IntroSpecs" style="font-weight: 700; font-size: 12pt; color: windowtext"><font face="Arial">Monitor, Detect, Alert, Diagnose, Measure, Collect & Report<br>on Windows Servers/Workstations, SNMP & SYSLOG Devices</font></span></center>
  191.  
  192. <hr>
  193.  
  194. <center><div class="WarningStyle" style="display:none; width: 501; height: 40" id="WarningBox"><table border="0" cellpadding="0" cellspacing="2" width="482">
  195.   <tr>
  196.     <td width="44"><img src="images/HourGlass.gif" width="32" height="32" alt="Please Wait!" align="bottom" border="0"></td>
  197.     <td style="font-family: Arial; font-size: 10pt; font-weight: bold; color: red" width="428">
  198.       <p align="center">Please Wait While MonitorIT Components Complete Loading!</p>
  199.     </td>
  200.   </tr>
  201. </table>
  202. </div></center>
  203.  
  204. <table border="0" cellpadding="0" cellspacing="2">
  205. <tr><td width="399">
  206.  
  207. <div id="NextStepsClick" align="left" style="width: 386; height: 75">
  208. <table border="0" cellpadding="0" cellspacing="4" height="60">
  209.   <tr>
  210.     <td width="43" height="70"><img src="Images/FirstTime.gif" width="60" height="60" style="cursor: hand" onclick="processQuickStart()" alt="MonitorIT first-time Quick Start"></td>
  211.     <td class="IntroSpecs" height="70">
  212.       <p style="margin-top: -1"><span style="cursor:hand" class="IntroSpecs" onclick="processQuickStart()">First-time
  213.       Using MonitorIT?<br>
  214.       <u id="NextStepsClickUnderL0" style="cursor:hand; color:blue" onclick="processQuickStart()">Click here for QuickStart steps</u>.</span><br>
  215.       QuickStart will take you through several steps to be up and running with
  216.       MonitorIT in under 15 minutes.</p>
  217.     </td>
  218.   </tr>
  219. </table>
  220. </div>
  221.  
  222. <div align="left" style="width: 389; height: 50">
  223. <table border="0" cellpadding="0" cellspacing="6" width="389" height="86">
  224.    <tr>
  225.     <td class="IntroSpecs" width="45" height="25"></td>
  226.     <td class="IntroSpecs" width="338" height="25">
  227.       <p style="margin-top: -1" id="IETip">MonitorIT's Internet Explorer based 'Console' interface is best viewed with a screen resolution of at least 1024x768 and 16-bit color.</p>
  228.     </td>
  229.   <tr>
  230.     <td class="IntroSpecs" width="45" height="25">
  231.       <p align="center"><img border="0" src="Images/sAdminComputers.gif" width="23" height="22"></p>
  232.     </td>
  233.     <td class="IntroSpecs" width="338" height="25">
  234.       <p style="margin-top: -1">Go to <u style="cursor:hand; color:blue" onclick="opennew=1; processPopUpSelect(10)">Configure Servers/Agents & Devices</u> to first Discover and/or Add all your selected servers,
  235.       workstations, and network devices that you want to monitor, along with their parameters.</p>
  236.     </td>
  237.   </tr>
  238.   <tr>
  239.     <td class="IntroSpecs" width="45" height="25">
  240.       <p align="center"><img border="0" src="Images/sAdminAlerts.gif" width="21" height="22"></td>
  241.     <td class="IntroSpecs" width="338" height="53">
  242.       <p style="margin-top: -1">Then, Go to <u style="cursor:hand; color:blue" onclick="opennew=1;  processPopUpSelect(1)">Configure Watches/Alerts</u> to
  243.       define the monitoring and alerting parameters on these servers,
  244.       workstations, and devices.</p>
  245.     </td>
  246.   </tr>
  247.   <tr>
  248.     <td width="45" height="25">
  249.       <p align="center"><button id="HelpButton" style="cursor:hand; " class="btheme" title="Click for Help" style="width:17px; height:19px;" onclick="top.banner.processAgentHelp()"><img src="images/HelpQuestionmark.gif" width="9" height="12" align="absmiddle"></button></p>
  250.     </td>
  251.     <td class="IntroSpecs" height="25">
  252.       <p style="margin-top: -1">Click the <u style="cursor:hand; color:blue" onclick="top.banner.processAgentHelp()">question-mark button</u> in the upper right-hand corner to access help for any 'Console' screen.</p>
  253.     </td>
  254.   </tr>
  255.   <tr>
  256.     <td width="45" height="25">
  257.     <p align="center"><button id="DownArrowButton" class="btheme" title="Click to display pop-up menu of MonitorIT features" style="width:17px; height:19px;" onclick="event.cancelBubble = true;openPopUpContext()"><img src="images/DownArrow.gif" width="7" height="5" align="absmiddle"></button></p>
  258.     </td>
  259.     <td class="IntroSpecs">
  260.       <p style="margin-top: -1">Click the <u style="cursor:hand; color:blue" onclick="event.cancelBubble = true;openPopUpContext()">down-arrow button</u> in the upper right-hand corner to access the MonitorIT menu and launch functions in separate new screens. Or use the 'Outlook' style menus to the left; click the 'Monitor', 'Display', 'Report' and 'Utilities' tabs to view all the available functions.</p>
  261.     </td>
  262.   </tr>
  263. </table>
  264. </div>
  265.  
  266. </td>
  267. <td width="250" valign="middle" height="180">
  268. <p align="center"><img src="images/Monito3.jpg"
  269. alt="MonitorIT, An Essential eBusiness Management Tool" WIDTH="243" HEIGHT="249"><br>
  270. <span style="font-family:Book Antigua; font-weight:700; font-size:12pt; color:windowtext">Monitor</span><span style="font-family:Arial Black; font-size:12pt; font-weight:700; color:windowtext">IT</span><sup style="font-family:Arial; font-size:11pt; font-weight:500; color:windowtext">«</sup><span style="font-family:Book Antigua; font-weight:700; font-size:12pt; color:windowtext"> / NMS</span><br><span style="font-family:Arial; font-weight:700; font-size:9pt; color:windowtext">An Essential Network Management Tool<br>for Performance and Availability Monitoring</span><br><span style="font-family:Arial; font-size:8pt; color:windowtext">Version
  271. 5.2.06-6/23/2003<br></span><span id="vertype" style="font-family:Arial; font-size:8pt; color:windowtext; display:none"><br></span><span style="font-family:Arial;  font-size:7pt; color:windowtext">Copyright 1998,2003 Breakout
  272. Technologies, Inc.<br>All Worldwide Rights Reserved</span></p>
  273.  
  274. </td></tr></table>
  275.     <div id="PopUpConfirm" class="PopUpBox" style="display:none; left:175; top:150; ">
  276.      <center>
  277.          <table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" >
  278.          <tr><td height="23" style="font-weight:800; font-size:11pt; background-color:graytext; color:captiontext" colspan="2" align="center">MonitorIT Evaluation</td></tr>
  279.            <tr><td height="10" class="optextb" colspan="2" align="center"><br><img src="images/Monito1.jpg" width="263" height="58" ><br><span style="color:red; font-size:15pt"><br><font face="Arial">MonitorIT Evaluation Version</font><br></span><span id="EvalExpire" style="color:red; font-size:14pt"></span><br><font face="Arial" size="2"><b>If you have Questions or Comments,<br> -Send Email to:
  280.               <font color="#0000FF"><u> support@breakoutsoft.com</u></font><br>-Or,
  281.               Call (908) 561-5210 and ask for Support<br><br>If you want to Discuss Purchasing MonitorIT Licenses,<br> -Send Email to:
  282.               <font color="#0000FF"><u> sales@breakoutsoft.com</u></font><br> -Or, Call (908) 561-5210 and ask for Sales</b></font></td></tr>
  283.                <tr><td colspan="2" height="10" class="inputlabel" align="right"></td></tr>
  284.              </table>
  285.             
  286.             <table width="100%" align="center" border="0" cellspacing="0" cellpadding="2" >
  287.         <tr><td colspan="3" align="center" width ="100%"><button id="OKButton" style="font-family:arial; font-size : 8pt; font-weight : 600; cursor:hand" title="Continue with Evaluation" style="width:75px; height:29px" onClick="processEvalContinue()" ><img src="images/apply.gif" align="absmiddle" height="16" width="16">Continue </button></td></tr>
  288.            <tr><td height="5" class="inputlabel" colspan="3" align="center"> </td></tr>
  289.       </table>
  290.      </center>
  291.    </div>   
  292. </body>
  293. </html>
  294.